<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

&lt;style&gt;
html {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
_filter:none;
}
&lt;/style&gt;

.infiniteCarousel {
  /*width: 395px;*/
  position: relative;
   height: 70px;
    width: 200px;
}

.infiniteCarousel .wrapper {
  width: 200px; 
  overflow: auto;
  height: 70px;
  position: absolute;
  top: 0;
  margin-left: 0px;
}
.infiniteCarousel .wrapper ul {
  width: 840px; /* single item * n */
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin:0;
  padding:0;
  position: absolute;
  top: 0;
}

.infiniteCarousel ul li {
  display:block;
  float:left;
  /*padding: 10px;
  padding-left:0px;
  padding-top:0px;*/
  height: 70px;
  width: 200px;
}
.infiniteCarousel ul li img {
    -webkit-transition: border-color 400ms;
	margin-bottom:0px;
}
.arrow img{ border:none;}</pre></body></html>